home *** CD-ROM | disk | FTP | other *** search
/ Mobiclic 71 / MOBICLIC 71.ISO / mac / DATA / COMMUN / temp0001 / 00292_Script_TEMPO+clikzap < prev    next >
Text File  |  2004-12-05  |  595b  |  28 lines

  1. property p_duree,p_FlagTempo
  2. -----------------
  3. on getPropertyDescriptionList me
  4.   return [#p_duree:[#comment: "durΘe de la tempo:",#format:  #integer, #default: 1 ]]
  5. end getPropertyDescriptionList
  6. ---------------------
  7. on exitFrame me
  8.   case(p_FlagTempo = VOID) of
  9.     1:
  10.       p_FlagTempo = 1
  11.       startTimer
  12.       go the frame
  13.     0:
  14.       case(the timer< 60*p_duree) of
  15.         1:
  16.           go the frame
  17.         0:
  18.           p_FlagTempo = VOID
  19.       end case  
  20.   end case
  21. end
  22. -------------------
  23. on mouseUp me
  24.   p_FlagTempo = VOID
  25.   go the frame + 1
  26. end
  27. ---------
  28.